home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 01 / b_destru.c < prev    next >
Text File  |  1990-10-31  |  259b  |  16 lines

  1. /* b_destruct.c -- Listing 4. */
  2.  
  3. #include <stdlib.h>
  4. #include "textbuf.h"
  5.  
  6. PUBLIC b_destruct( textbuf *b )
  7. {
  8.     if( b->buf && b->magic == B_MAGIC )
  9.     {
  10.         BFREE( b->buf );
  11.         b->magic = 0;
  12.         return 1;
  13.     }
  14.     return 0;
  15. }
  16.